R/parse aws timestamp.R

#' @export

parse_AWS_date_time <- function(x) {
  x %>%
    str_replace_all(c(".000Z" =  "", "T" = " ")) %>%
    parse_date_time(orders = "Y!-m!-d! H!:M!:S!")
}
rosseji/rutils documentation built on May 17, 2019, 11:16 p.m.